ess.powder.types.Beamline#

pydantic model ess.powder.types.Beamline[source]#

Beamline metadata.

Show JSON schema
{
   "title": "Beamline",
   "description": "Beamline metadata.",
   "type": "object",
   "properties": {
      "name": {
         "title": "Name",
         "type": "string"
      },
      "facility": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Facility"
      },
      "site": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Site"
      },
      "revision": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Revision"
      }
   },
   "required": [
      "name"
   ]
}

Fields: