infra/userportal/gateway/models.py [31:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      content_type='application/json',
      schema= api.JsonSchema(
        type=api.JsonSchemaType.OBJECT,
        required=[
          "UserId",
          "Image",
          "Properties",
        ],
        properties={
          "UserId": api.JsonSchema(
            type=api.JsonSchemaType.STRING,
            description='Primary identifier for the user.'),
          "Image": api.JsonSchema(
            type=api.JsonSchemaType.STRING,
            description='utf8(base64( image ))'),
          "Properties": api.JsonSchema(
            type= api.JsonSchemaType.OBJECT,
            description='An arbitrary property bag.')
        }))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



infra/userportal/gateway/models.py [55:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      content_type='application/json',
      schema= api.JsonSchema(
        type=api.JsonSchemaType.OBJECT,
        required=[
          "UserId",
          "Image",
          "Properties",
        ],
        properties={
          "UserId": api.JsonSchema(
            type=api.JsonSchemaType.STRING,
            description='Primary identifier for the user.'),
          "Image": api.JsonSchema(
            type=api.JsonSchemaType.STRING,
            description='utf8(base64( image ))'),
          "Properties": api.JsonSchema(
            type= api.JsonSchemaType.OBJECT,
            description='An arbitrary property bag.')
        }))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



